home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
room3d
/
fmain.frm
< prev
next >
Wrap
Text File
|
1999-02-23
|
1KB
|
50 lines
VERSION 5.00
Begin VB.Form fMain
BackColor = &H00000000&
BorderStyle = 0 'None
ClientHeight = 7230
ClientLeft = 0
ClientTop = 0
ClientWidth = 9615
ControlBox = 0 'False
FillStyle = 0 'Solid
ForeColor = &H00000000&
Icon = "fMain.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form1"
MousePointer = 4 'Icon
ScaleHeight = 482
ScaleMode = 3 'Pixel
ScaleWidth = 641
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
WindowState = 2 'Maximized
Begin VB.Image IMG
Height = 75
Left = -30
Top = -120
Visible = 0 'False
Width = 60
End
End
Attribute VB_Name = "fMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'A compilation of various sources to display D3DRM in fullscreen
'Compiled by Darkphorm
'http://www.geocities.com/SiliconValley/Hills/6216/projects.html
'darkphorm@hotmail.com
Option Explicit
Private Sub Form_Unload(Cancel As Integer)
' Enable error handling...
On Error Resume Next
' Terminate application...
' Cleanup application data
Call AppTerminate
Me.Hide
' Terminate application
End
End Sub